home *** CD-ROM | disk | FTP | other *** search
- on mouseEnter
- cursor([cast "curs", cast "mask"])
- end
-
- on mouseLeave
- cursor(-1)
- end
-
- on mouseUp
- global listaItems
- cursor(-1)
- set itemsDeEstaPagina to []
- repeat with x = 1 to 30
- if the castNum of sprite x <> 0 then
- if char 1 of the name of cast the castNum of sprite x = "@" then
- append(itemsDeEstaPagina, the name of cast the castNum of sprite x)
- end if
- end if
- end repeat
- repeat with x = 1 to count(itemsDeEstaPagina)
- set yaEsta to 0
- repeat with y = 1 to count(listaItems)
- if getAt(itemsDeEstaPagina, x) = getAt(listaItems, y) then
- set yaEsta to 1
- exit repeat
- end if
- end repeat
- if not yaEsta then
- append(listaItems, getAt(itemsDeEstaPagina, x))
- repeat with x = 1 to 3
- set the visible of sprite 120 to 1
- updateStage()
- startTimer()
- repeat while the timer < 10
- end repeat
- set the visible of sprite 120 to 0
- updateStage()
- startTimer()
- repeat while the timer < 10
- end repeat
- end repeat
- end if
- end repeat
- startTimer()
- repeat while the timer < 20
- end repeat
- cursor([cast "curs", cast "mask"])
- end
-